home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / readline-common.postinst < prev    next >
Encoding:
Text File  |  2010-05-30  |  205 b   |  14 lines

  1. #! /bin/sh -e
  2.  
  3. install_from_default() {
  4.   if [ ! -f $2 ]; then
  5.     cp -p $1 $2
  6.   fi
  7. }
  8.  
  9. if [ "$1" = "configure" ] && [ "$2" = "" ]; then
  10.   install_from_default /usr/share/readline/inputrc /etc/inputrc
  11. fi
  12.  
  13.  
  14.